home *** CD-ROM | disk | FTP | other *** search
/ Champak 50 / Volume 50 - JOGO DISK .iso / Games / mechacatdestructo.swf / scripts / frame_1 / DoAction.as < prev   
Text File  |  2007-10-01  |  1KB  |  57 lines

  1. _global.ipbSend = function(ipb_score)
  2. {
  3.    _root._visible = false;
  4.    _root.enabled = false;
  5.    if(ipb_score == eval("undefined"))
  6.    {
  7.       ipb_score = eval(_global.ipb_scoreVar);
  8.    }
  9.    stopAllSounds();
  10.    xx = new LoadVars();
  11.    xx.gname = _global.ipb_get_gname();
  12.    xx.gscore = ipb_score;
  13.    xx.send("index.php?act=Arcade&do=newscore","_self","POST");
  14.    stop();
  15. };
  16. _global.ipb_get_gname = function()
  17. {
  18.    var u = _root._url;
  19.    var ipb_gname = "";
  20.    var ch = "";
  21.    var startPos = u.lastIndexOf("\\") + 1;
  22.    if(startPos == -1 || startPos == 0)
  23.    {
  24.       startPos = u.lastIndexOf("/") + 1;
  25.    }
  26.    var x = startPos;
  27.    var len = String(u).length;
  28.    while(x < String(u).length)
  29.    {
  30.       ch = u.charAt(x);
  31.       if(ch == ".")
  32.       {
  33.          break;
  34.       }
  35.       ipb_gname += ch;
  36.       x = eval("x") + 1;
  37.    }
  38.    return ipb_gname;
  39. };
  40. fscommand("showmenu",false);
  41. fscommand("trapallkeys",true);
  42. ipb_gname = _global.ipb_get_gname();
  43. xx = new LoadVars();
  44. xx.onLoad = function(success)
  45. {
  46.    if(!success)
  47.    {
  48.       stop();
  49.    }
  50.    else
  51.    {
  52.       _global.ipb_scoreVar = this.scoreVar;
  53.    }
  54. };
  55. fname = "arcade/gamedata/" + ipb_gname + "/" + ipb_gname + ".txt";
  56. xx.load(fname);
  57.